home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- // Borland C++Builder
- // Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef srvr_ATLH
- #define srvr_ATLH
-
- // Check if we're using ATLVCL
- //
- #if defined(USING_ATLVCL)
-
- #include <atlbase.h>
- /*
- // Declares TComModule
- //
- #include <tcommod.h>
-
- // NOTE: You may derive a class from TComModule and use it as your server's
- // module object. (i.e. Assign an instance of that class to _Module).
- // However, you must *NOT* change the name _Module.
- //
- extern TComModule _Module;
- */
-
- // To get declaration of _Module
- #include <atl\atlvcl.h>
-
- #elif defined(USING_ATL)
-
- // Light-weight ATL support
- //
-
- #include <atlbase.h>
-
- // NOTE: You may derive a class from TComModule and use it as your server's
- // module object. (i.e. Assign an instance of that class to _Module).
- // However, you must *NOT* change the name _Module.
- //
- extern CComModule _Module;
-
- #include <atlcom.h>
- #include <shellapi.h>
- #include <atlctl.h>
-
- #endif
-
-
- #endif // srvr_ATLH
-
-